home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Users Group Library 1996 July
/
C-C++ Users Group Library July 1996.iso
/
listings
/
v_13_06
/
pjp
/
iostream
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1995-04-06
|
329 b
|
15 lines
------------- Listing 1: The file iostream ------------------
// iostream standard header
#ifndef _IOSTREAM_
#define _IOSTREAM_
#include <fstream>
// standard stream declarations
extern istream cin;
extern ostream cout;
extern ostream cerr;
extern ostream clog;
static ios::Init _Ios_init;
#endif